Skip to content
This repository was archived by the owner on Sep 1, 2020. It is now read-only.

Latest commit

 

History

History
22 lines (17 loc) · 473 Bytes

4.4 - 严格模式.md

File metadata and controls

22 lines (17 loc) · 473 Bytes

严格模式

注意: 严格模式和enableCoroutine存在冲突, 不能同时启用, 不建议启用

4.1.0版本后可用, 开启严格模式后, 调用常用的阻塞IO的函数和方法会出现警告

函数原型

function Runtime::enableStrictMode();

示例以及警告信息

Swoole\Runtime::enableStrictMode();
sleep(1);
Warning: sleep() has been disabled for security reasons in strictmode.php on line 5